home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000160_fdc@columbia.edu_Tue Oct 11 12:14:32 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: C-Kermit progress
  5. Date: 3 Oct 2005 18:46:18 GMT
  6. Organization: Columbia University
  7. Lines: 30
  8. Message-ID: <slrndk2v3q.cfo.fdc@sesame.cc.columbia.edu>
  9. References: <1127931969.688119@irys.nyx.net> <slrndjlp1k.6rj.fdc@sesame.cc.columbia.edu> <1127982374.692597@irys.nyx.net>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1128365178 16076 128.59.59.56 (3 Oct 2005 18:46:18 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 3 Oct 2005 18:46:18 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15403
  17.  
  18. On 2005-09-29, Robert Rodriguez <rjrodrig@nyx.net> wrote:
  19. : It always fails on the ckuus5.c, even after a reboot. I tried 
  20. : increasing the emulator virtual memory size to 256meg, but it didn't
  21. : help.
  22. :
  23. Then it's a "hard" resource limit that doesn't exit on real NetBSD.  I
  24. don't know if the limit is in the emulated VAX or what.  Anyway, you can
  25. find a lot of hints in documents like:
  26.  
  27.   http://www.columbia.edu/kermit/ckccfg.html
  28.  
  29. for trimming the size by trimming features and/or size of things.  ckuus5.c
  30. is mainly taken up by the script language implementation.  I'll bet if you
  31. did:
  32.  
  33.   make netbsd KFLAGS=-DNOSPL
  34.  
  35. it would build.  But it also wouldn't include the scripting features.
  36.  
  37. : Also I tried building it on MVS Openedition with the POSIX option, but
  38. : looks like there is no param.h or utmp.h header file, and it got
  39. : errors looking for a timezone struct. Are there some other options I need
  40. : to add?
  41. :
  42. If I knew the answer to that I would have a makefile target.  Usually the
  43. way this works is, somebody gives me access to the platform in question,
  44. I spend a few hours figuring it out, and then I put together the needed
  45. targed, along with any necessary source-code changes.
  46.  
  47. - Frank